home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / hypercrd / hc2_x / tcprogud.sit / TC Prog Guide / card_11521.txt < prev    next >
Text File  |  1991-02-27  |  836b  |  21 lines

  1. -- card: 11521 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4755
  5. -- name: 
  6.  
  7.  
  8. -- part contents for background part 7
  9. ----- text -----
  10. 20
  11.  
  12. -- part contents for background part 4
  13. ----- text -----
  14.     # include <oops.h>
  15.     # include <stdio.h>
  16.  
  17. '# include' is a PREPROCESSOR DIRECTIVE, identified by the '#' symbol.  The C preprocessor carries out text-manipulation directives as a preliminary step to compilation.  This one directs the preprocessor to "paste" the text from the indicated file into this file before compilation.  The #included files oops.h and stdio.h are called HEADER files, and contain C source code declaring constants, data structures, and library functions which we will use in this program.
  18.  
  19. The C language is very terse, but is readily extended by the use of headers and function libraries.
  20.  
  21.